home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / network / lattice / portlib.lzh / PORTLIB / SETENV.C < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-20  |  91 b   |  8 lines

  1. int
  2. setenv (str)
  3.     char *str;
  4. {
  5.     extern int putenv (char *);
  6.     return putenv (str);
  7. }
  8.